home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / aztecnos.arc / CONFIG.H < prev    next >
Encoding:
C/C++ Source or Header  |  1989-02-19  |  1.3 KB  |  42 lines

  1. #ifndef    NSESSIONS
  2.  
  3. /* Software options */
  4. #define    SERVERS        1    /* Include TCP servers */
  5. #define    TRACE        1    /* Include packet tracing code */
  6. #define    NSESSIONS    10    /* Number of interactive clients */
  7.  
  8. /* Hardware configuration */
  9. #undef    PC_EC        1    /* 3-Com 3C501 Ethernet controller */
  10. #define    SLIP        1    /* Serial line IP */
  11. #define    KISS        1    /* KISS TNC code */
  12. #define    HS        1    /* High speed (56kbps) modem driver */
  13. #undef    HAPN        1    /* Hamilton Area Packet Network driver code */
  14. #undef    EAGLE        1    /* Eagle card driver */
  15. #define    PACKET        1    /* FTP Software's Packet Driver interface */
  16. #undef    PC100        1    /* PAC-COM PC-100 driver code */
  17. #undef    APPLETALK    1    /* Appletalk interface (Macintosh) */
  18. #undef    NRS        1    /* NET/ROM async interface */
  19. #undef    NETROM        1    /* NET/ROM network support */
  20.  
  21. #if (defined(NRS))
  22. #undef    NETROM
  23. #define    NETROM        1    /* NRS implies NETROM */
  24. #endif
  25.  
  26. #if (defined(HS)||defined(NETROM)||defined(KISS)||defined(HAPN)||defined(EAGLE)||defined(PC100))
  27. #define    AX25        1        /* AX.25 subnet code */
  28. #endif
  29.  
  30. /* KISS TNC, SLIP, NRS or PACKET implies ASY */
  31. #if (defined(KISS) || defined(NRS) || defined(SLIP))
  32. #undef    ASY
  33. #define    ASY        1    /* Asynch driver code */
  34. #endif
  35.  
  36. #if (defined(PC_EC) || defined(PACKET))
  37. #define    ETHER    1        /* Generic Ethernet code */
  38. #endif
  39.  
  40. #endif    /* NSESSIONS */
  41.  
  42.